home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 5113 < prev    next >
Encoding:
Text File  |  1996-08-06  |  1.6 KB  |  41 lines

  1. Newsgroups: comp.lang.c++
  2. Path: peer-news.britain.eu.net!uknet!owl-uk!news
  3. From: Alan C Francis <alanf@owl-uk.co.uk>
  4. Subject: Re: Creatin a Wizard, VC++
  5. Content-Type: text/plain; charset=us-ascii
  6. Message-ID: <31122A14.5A0@owl-uk.co.uk>
  7. Sender: news@owl-uk.co.uk (News system)
  8. Content-Transfer-Encoding: 7bit
  9. Organization: Office Workstations, Ltd.
  10. References: <4elsmu$dlm$2@mhade.production.compuserve.com>
  11. Mime-Version: 1.0
  12. Date: Fri, 2 Feb 1996 15:13:24 GMT
  13. X-Mailer: Mozilla 2.0b6a (Win95; I)
  14.  
  15. Luis Vargas wrote:
  16. > I am in the process of creating a wizard application. Has anyone
  17. > created a wizard before. Basically a number of questions are
  18. > asked to the user and the wizard responds with more questions
  19. > depending on the answers. Are there any tools which may help in
  20. > this developement. I plan on using Visual C++
  21. > Thanks in Advance,
  22. > Luis VargasIf you use VC++ 4.0 it's _very_ easy.  You build up each page as a 
  23. dialog resource.  You then generate CPropertyPage class for each one. 
  24. (this is done with VC++ CLassWIzard).  The apges are combined into a 
  25. CPropertySheet object for which you call "SetWizardMode()".
  26.  
  27. The pages can then be gone through in sequence, and each page can 
  28. intercept the Next and Back buttons to decide where to go...
  29.  
  30. As for doing it without VC++, your guess is as good as mine :-)
  31.  
  32. Alan
  33. -- 
  34. -----------------------------------------------------------------
  35. Alan C Francis           | Lego is a potent three-dimensional
  36. Office Workstations, Ltd | modelling tool and a language in
  37. Edinburgh, Scotland      | itself - Douglas Coupland, Microserfs
  38.